Conversation
|
.bundle |
macOS ARM64 Desktop App (Apple Silicon)📱 Download macOS Desktop App (arm64, unsigned) Instructions: |
| if (scrollRef.current?.scrollToBottom) { | ||
| scrollRef.current.scrollToBottom(); | ||
| } | ||
| }, 500); // delay to ensure content is fully loaded |
There was a problem hiding this comment.
does this actually have to do with loading? since we already checked that in !loadingChat
There was a problem hiding this comment.
good question it was to add a delay for dom rendering but I went ahead and refactored to use a callback from progressive message list instead and its much cleaner and more reliable 👍
|
.bundle |
macOS ARM64 Desktop App (Apple Silicon)📱 Download macOS Desktop App (arm64, unsigned) Instructions: |
…data * 'main' of github.com:block/goose: improve auto scroll to bottom + detection (#4504) Fix unable to get access to microphone in Mac app (#4571) Use middleware to verify secret key (#4338) adding Vercel MCP (#4562) docs: reorganizing CLI commands (#4566) Desktop import yaml recipes (#4544)
Signed-off-by: Matt Donovan <[email protected]>
Signed-off-by: HikaruEgashira <[email protected]>
Pull Request Description
During chat the window is not auto scrolling to the bottom after an agent response. This adds detection if the user is near the bottom of scroll and debouncing with timeouts to avoid jumpiness.
Also fixes the window not auto scrolling to the bottom when resuming sessions